home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Metrowerks CodeWarrior / (Project Stationery) / Java / Java2 / Java App-Applet / Main.java < prev    next >
Text File  |  1998-03-12  |  992b  |  35 lines

  1. /*
  2.     Application wrapper for applets
  3.     April 97 M.Stricklin
  4.     Feb 98 A. Gill
  5.  
  6.     Feel free to use this source code in any way.
  7. */
  8.  
  9. public class Main
  10. {
  11.  
  12.     public static void main(String args[])
  13.     {
  14.         java.util.Hashtable params = new java.util.Hashtable();
  15.         // If you wish, you can parse the args,
  16.         // and insert them into the params Hashtable,
  17.         // or simply hardwire them here.
  18.         // The params is what the Applet's getParameter() will use.
  19.         // This example here simulates the line
  20.         //  <param name="MYTEXT" value="This applet is run as an application">
  21.         // The name part should be upper cased, and
  22.         // getParameter() normalizes the name to upppercase for you.    
  23.         params.put("MYTEXT", "This applet is run as an application");
  24.  
  25.         // Create the applet.
  26.         AppApplet applet = new AppApplet();
  27.  
  28.         // And fire up the applet frame.
  29.         com.metrowerks.AppletFrame.startApplet(
  30.                         applet,
  31.                         "Java Hybrid Applet / Application",
  32.                          params,
  33.                          300, 200);
  34.     }
  35. }